diff options
| author | real-zephex <[email protected]> | 2024-04-07 13:50:17 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-07 13:50:17 +0000 |
| commit | 1eee8b5196828128a189d6e9bf889500aadb2308 (patch) | |
| tree | 2c569fcd87048af5d3b2fd23a89b28c50565a109 /src/app/kdrama/[id]/page.jsx | |
| parent | idk what I am doing (diff) | |
| download | dramalama-1eee8b5196828128a189d6e9bf889500aadb2308.tar.xz dramalama-1eee8b5196828128a189d6e9bf889500aadb2308.zip | |
idek
Diffstat (limited to 'src/app/kdrama/[id]/page.jsx')
| -rw-r--r-- | src/app/kdrama/[id]/page.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index 6a165d2..8f0fa9c 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -3,7 +3,7 @@ import Image from "next/image"; import EpisodesButtons from "./buttons"; import PreFetchVideoLinks from "../components/cacher"; -export const runtime = 'edge'; +export const runtime = "edge"; export default async function DramaInfo({ params }) { const id = decodeURIComponent(params.id); @@ -18,7 +18,7 @@ export default async function DramaInfo({ params }) { <div className={styles.TitleContainer}> <p>{info.title}</p> <Image - src={info.image} + src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${info.image}`} width={160} height={240} alt="Drama Poster" |